@charset "utf-8";
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    background: transparent;
}
html{width: 100%;
    font-family: "Microsoft YaHei",Arial,Verdana,"Helvitica","Tohoma",Sans-serif;
}
body {
    line-height: 1;
    min-height:100%;
    -webkit-text-size-adjust:100%;/*iPhone 和 Android 的浏览器纵向 (Portrate mode) 和橫向 (Landscape mode) 模式皆有自动调整字体大小的功能。控制它的就是 CSS 中的 -webkit-text-size-adjust。text-size-adjust 设为 none 或者 100% 关闭字体大小自动调整功能.*/
    -webkit-tap-highlight-color:transparent;/*比如在图片或者链接上，希望不出现被选中的颜色，可以怎么做呢？其实我们可以将属性-webkit-tap-highlight-color的值设置为透明就可以实现。当然也可以设置成其他颜色，也支持rgba*/
}
*:not(input,textarea) {
    -webkit-touch-callout: none;/*长按屏幕时会禁止设备弹出列表按钮*/
   /* -webkit-user-select: none;/*之所以放在这里是因为如果放到body中会导致个别Android机型（Google  Nexus，Android 4.2.2）输入框无法输入*/
}
*:focus {
outline:0;
-webkit-tap-highlight-color:transparent
}/*防止获取焦点时，出现边框*/
*{
    margin:0;
    padding:0;
}
input:focus{
    -webkit-tap-highlight-color:rgba(0,0,0,0);
    -webkit-user-modify:read-write-plaintext-only;
}
input[type="button"], input[type="submit"], input[type="reset"] {
-webkit-appearance: none;
}
select{-webkit-appearance:none;/*用来改变按钮和其他控件的外观,加上这个以后，select的高度就可以改变了。所以，当然也可以用于其他浏览器控件中*/
}
textarea {  -webkit-appearance: none;}
.alignleft{text-align: left!important;}
.alignright{text-align: right!important;}

ol,ul {list-style: none;}
a {text-decoration: none;}
blockquote,q {quotes: none;}
a,button,input{-webkit-tap-highlight-color:rgba(255,0,0,0);}
blockquote:before,blockquote:after,q:before,q:after {
    content: '';
    content: none;
}
/* remember to highlight inserts somehow! */
ins {text-decoration: none;}
del {text-decoration: line-through;}
/* tables still need 'cellspacing="0"' in the markup */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

html {
    font-size: 14px;
}


a {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/*input中的placeholder文本样式*/
::-webkit-input-placeholder { color:#999; }
::-moz-placeholder { color:#999; } /* firefox 19+ */
:-ms-input-placeholder { color:#999; } /* ie */
input:-moz-placeholder { color:#999; }


/* flex常用属性 */

/* justify-content:x轴对齐方式
  flex-start（默认值）：左对齐
  flex-end：右对齐
  center： 居中
  space-between：两端对齐，项目之间的间隔都相等。
  space-around：每个项目两侧的间隔相等。所以，项目之间的间隔比项目与边框的间隔大一倍。
*/

/* align-items:y轴对齐方式
  flex-start：交叉轴的起点对齐。
  flex-end：交叉轴的终点对齐。
  center：交叉轴的中点对齐。
  baseline: 项目的第一行文字的基线对齐。
  stretch（默认值）：如果项目未设置高度或设为auto，将占满整个容器的高度。
*/

/* flex-direction:属性决定主轴的方向（即项目的排列方向）
  row（默认值）：主轴为水平方向，起点在左端。
  row-reverse：主轴为水平方向，起点在右端。
  column：主轴为垂直方向，起点在上沿。
  column-reverse：主轴为垂直方向，起点在下沿。
*/
.flex-wrap{ display: -webkit-box;   display: -webkit-flex;  display: flex; }
.flex-con{     -webkit-box-flex: 1;     -webkit-flex: 1;    flex: 1;}
.flex-vertical{ -webkit-box-orient: vertical;-webkit-flex-flow: column;flex-flow: column;}

/*flex横向布局*/
.row {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
}
/*flex纵向*/
.column {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
}

/*水平居中*/
.flex-row-center {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
}
/*水平居左*/
.flex-row-start{
  display: flex;
  display: -webkit-flex;
    justify-content:flex-start;
}
/*水平居右*/
.flex-row-end{
  display: flex;
  display: -webkit-flex;
    justify-content:flex-end;
}
/*两端对齐，项目之间的间隔都相等*/
.flex-row-between{
  display: flex;
  display: -webkit-flex;
    justify-content:space-between;
}
/*垂直居中*/
.flex-column-center {
  display: flex;
  display: -webkit-flex;
  align-items: center;
}
/*justify-content:space-around：每个项目两侧的间隔相等。所以，项目之间的间隔比项目与边框的间隔大一倍。*/

/*水平、垂直居中*/
.center{
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.animate1{
    animate-duration: .3s;   /*动画持续时间*/
    animate-delay: 0s;  /*动画延迟时间*/
    animate-iteration-count: 1;   /*动画执行次数*/
}
.animate2{
    animate-duration: .5s;   /*动画持续时间*/
    animate-delay: .3s;  /*动画延迟时间*/
    animate-iteration-count: 1;   /*动画执行次数*/
}

.clearfix:after {
    content: "/20";
    display: block;
    visibility: hidden;
    clear: both;
    font-size: 0;
    line-height: 0;
    height: 0;
}
.puff_left {
    float: left !important;
}
.puff_right {
    float: right !important;
}
.clearfix {
    *zoom:1;
}

.clear_border {
    border: none !important;
}
.clear_bg {
    background: none !important;
}
.clear_margin{margin:0!important;}
.clear_padding{padding:0!important;}
.margin_left {
    margin-left: 0px !important;
}
.margin_top {
    margin-top: 0px !important;
}
.margin {
    margin: 0;
}
.color_border {
    border: 1px #ff6600 solid !important;
}

.dis_none {
    display: none;
}
.dis_block {
    display: block;
}
.dis_inlineblock {
    display: inline-block;
}
.dis_inline {
    display: inline;
}
/*字体对齐方式*/
.text_l {
    text-align: left !important;
}
.text_c {
    text-align: center !important;
}
.text_r {
    text-align: right !important;
}
/*字体颜色预设*/
.color_r {
    color: #f7350a !important;/*红色*/
}
.color_r2 {
    color: #f7350a !important;/*红色加粗*/
    font-weight: bold;
}
.color_w {
    color: #fff !important;/*白色*/
}
.color_d {
    color: #000 !important;/*黑色*/
}
.color_g {
    color: #b0b0b0 !important;/*灰色*/
}
.color_g2 {
    color: #378001 !important;/*绿色*/
}
.color_y {
    color: #ff5400 !important;/*橘黄色*/
}
.fontnormal{font-weight: normal!important;}
/*背景颜色预设*/
.bg_01 {
    background-color: #ca0b0b !important;/*红色*/
}
.bg_02 {
    background-color: #ffe79d !important;/*浅黄色*/
}
.bg_03 {
    background-color: #ff8712 !important;/*菊黄色*/
}
.bg_04 {
    background: #666 !important;/*灰色*/
    color: #fff !important;
}
.bg_05{
    background: #5bc0de!important;/*浅蓝色*/
}
.bg_06{background: #fff!important;}/*白色*/
.red{color: red;}


.reveal-modal-bg {
    position: fixed;
    height: 100%;
    width: 100%;
    background: #000;
    z-index: 1;
    top: 0;
    left: 0;
    opacity: 0.8;
    filter: alpha(opacity: 50);
}
.reveal-modal-bg2 {
    position: fixed;
    height: 100%;
    width: 100%;
    background: #fff;
    z-index: 100;
    top: 0;
    left: 0;
    opacity: 0.7;
    filter: alpha(opacity: 70);
}

.chk_3{
    display: none;
}

/*******STYLE 3*******/

.chk_3 + label {
    background-color: #fafbfa;
    padding: .25rem;
    border-radius: 50px;
    display: inline-block;
    position: relative!important;
    top:0.75rem!important;
    /*margin-right: 0px;*/
    -webkit-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
    width: 3.7rem;
    height: 1.65rem;
}

.chk_3  + label:after {
    content: ' ';
    position: absolute;
    top: 0;
    -webkit-transition: box-shadow 0.1s ease-in;
    transition: box-shadow 0.1s ease-in;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    box-shadow: inset 0 0 0 0 #eee, 0 0 1px rgba(0,0,0,0.4);
}

.chk_3  + label:before {
    content: ' ';
    position: absolute;
    background: white;
    top: 1px;
    left: 1px;
    z-index: 999999;
    width: 2rem;
    -webkit-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
    height: 2rem;
    border-radius: 100%;
    box-shadow: 0 3px 1px rgba(0,0,0,0.05), 0 0px 1px rgba(0,0,0,0.3);
}

.chk_3:active + label:after {
    box-shadow: inset 0 0 0 20px #eee, 0 0 1px #eee;
}

.chk_3:active + label:before {
    width: 37px;
}

.chk_3:checked:active + label:before {
    width: 37px;
    left: 20px;
}

.chk_3  + label:active {
    box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);
}

.chk_3:checked + label:before {
    content: ' ';
    position: absolute;
    left: 2.2rem;
    border-radius: 50rem;
}

.chk_3:checked + label:after {
    content: ' ';
    font-size: 1.5em;
    position: absolute;
    background: #4cda60;
    box-shadow: 0 0 1px #4cda60;
}

h2.style{
    line-height: 2rem;
    color: #333;
    font-size: 1.4rem;
    text-align: left;
    padding:.5rem 1rem;
    background: #fff;
}
.wrong-a{
    line-height: 2.5rem;
    font-size: 1rem;
    color: #d9534f;
    display: block;
}
.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.flex-1 {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.flex-align-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.flex-column{
  flex-direction:column;
 -webkit-flex-direction:column;
}
.flex-wrap{
    flex-wrap:wrap;
    -webkit-flex-wrap:wrap
}
.flex-pack-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.flex-pack-end {
    -webkit-box-pack: flex-end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: flex-end;
    justify-content:flex-end;
}
.flex-pack-justify {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.flex-pack-around {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-around;
    -ms-flex-pack: justify;
    justify-content: space-around;
}
.flex-center {
  display: flex !important;
  display: -webkit-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.pagination{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}